home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form2
- Caption = "A Typical Message"
- ClientHeight = 1410
- ClientLeft = 2415
- ClientTop = 2130
- ClientWidth = 3825
- Height = 1815
- Left = 2355
- LinkTopic = "Form2"
- ScaleHeight = 1410
- ScaleWidth = 3825
- Top = 1785
- Width = 3945
- Begin CommandButton Command2
- Caption = "No"
- Height = 495
- Left = 2460
- TabIndex = 2
- Top = 660
- Width = 1215
- End
- Begin CommandButton Command1
- Caption = "Yes"
- Height = 495
- Left = 2460
- TabIndex = 1
- Top = 120
- Width = 1215
- End
- Begin Label Label1
- Caption = "Are you going to be a registered DimLib user?"
- Height = 1155
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 2175
- End
- Option Explicit
- Sub Command1_Click ()
- Dim i As Integer
- i = DimWindow(HWnd)
- MsgBox "Thanks!"
- i = UnDimWindow(HWnd)
- Unload Me
- End Sub
- Sub Command2_Click ()
- Dim i As Integer
- i = DimWindow(HWnd)
- MsgBox "Bummer!"
- i = UnDimWindow(HWnd)
- Unload Me
- End Sub
-